home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
comms
/
non-internet
/
samba
/
source
/
checkos.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1996-06-26
|
593b
|
19 lines
#!/bin/sh
if [ x"$1" = x"" ]; then
cat << EOF
=====================================================================
You forgot to uncomment a host type and flags in the Makefile. If your
host type does not appear in the Makefile then choose one that you
think is similar and once you have it working then add a new host type
to the Makefile and includes.h. Please also send me the output of the
command "uname" on your system so this can be automated at some future
time.
Andrew.Tridgell@anu.edu.au
=====================================================================
EOF
exit 1
fi
exit 0